home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Trusted Irix /B 4.0.4
/
Trusted-Irix B-4.0.1.iso
/
dist
/
eoe1.idb
/
usr
/
include
/
sys
/
klog.h.z
/
klog.h
Wrap
C/C++ Source or Header
|
1992-04-03
|
1KB
|
36 lines
/**************************************************************************
* *
* Copyright (C) 1986, Silicon Graphics, Inc. *
* *
* These coded instructions, statements, and computer programs contain *
* unpublished proprietary information of Silicon Graphics, Inc., and *
* are protected by Federal copyright law. They may not be disclosed *
* to third parties or copied or duplicated in any form, in whole or *
* in part, without the prior written consent of Silicon Graphics, Inc. *
* *
**************************************************************************/
#ident "$Revision: 1.4 $"
#ifndef _KLOG_H
#define _KLOG_H
/*
** Thie file contains the definition for the kernel error logging
** message area. The buffer area is maintained as a ring buffer.
*/
#define KLM_BUFSZ ( 4096 - ( 2 * sizeof ( unsigned int ) ) )
typedef struct
{
unsigned int klm_readloc; /* read location */
unsigned int klm_writeloc; /* write location */
char klm_buffer[ KLM_BUFSZ]; /* da buffer */
} klogmsgs_t;
extern klogmsgs_t klogmsgs;
extern int Klog_Maxbufsz; /* max buffer size */
#endif